projects
/
project
/
bcm63xx
/
u-boot.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
3600b46
)
buildman: fix typo
author
Chris Packham
<
[email protected]
>
Fri, 18 Jan 2019 07:40:29 +0000
(20:40 +1300)
committer
Simon Glass
<
[email protected]
>
Sat, 9 Feb 2019 19:50:22 +0000
(12:50 -0700)
Fix a typo in the error message from CheckOutputDir().
Signed-off-by: Chris Packham <
[email protected]
>
Reviewed-by: Simon Glass <
[email protected]
>
tools/buildman/control.py
patch
|
blob
|
history
diff --git
a/tools/buildman/control.py
b/tools/buildman/control.py
index 27916d3c355daad98451bc5bd88fc31b313bdab9..fcf531c5f143e8062b941e35a0669f8d9b7034d8 100644
(file)
--- a/
tools/buildman/control.py
+++ b/
tools/buildman/control.py
@@
-99,7
+99,7
@@
def CheckOutputDir(output_dir):
cwd_path = os.path.realpath('.')
while True:
if os.path.realpath(path) == cwd_path:
- Print("Cannot use output directory '%s' since it is within the current direct
t
ory '%s'" %
+ Print("Cannot use output directory '%s' since it is within the current directory '%s'" %
(path, cwd_path))
sys.exit(1)
parent = os.path.dirname(path)